home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_05 / 9n05040b < prev    next >
Encoding:
Text File  |  1995-11-01  |  187 b   |  14 lines

  1.  
  2.     Display    *display;
  3.     Window    window;
  4.     GC        gc;
  5.     int        x1, y1;
  6.     int        x2, y2;
  7.  
  8.     XDrawLine( display,
  9.         window,
  10.         gc,
  11.         x1, y1,    /* starting point */
  12.         x2, y2 );    /* ending point */
  13.  
  14.